home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C++ / Applications / PICSee Dust 1.01 / Quaternary Source / SavePicture.h < prev    next >
Text File  |  1995-11-04  |  408b  |  27 lines

  1. #ifndef SAVEPICTURE_H_
  2. #define SAVEPICTURE_H_
  3.  
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7.  
  8. Boolean SavePicture(
  9.     Handle    thePic,
  10.     OSType    creator,
  11.     Str31    fileName);
  12.  
  13. Boolean SavePictureFile(
  14.     FSSpec    *pictFile,
  15.     Handle    thePic);
  16.  
  17. Boolean SavePictureResource(
  18.     PicHandle    thePic,
  19.     short        fileRefNum,
  20.     short        resID,
  21.     Str31        resName);        // Pass a valid p-str or NULL
  22.  
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26.  
  27. #endif // SAVEPICTURE_H_